home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Clickx 115
/
Clickx 115.iso
/
software
/
tools
/
windows
/
tails-i386-0.16.iso
/
live
/
filesystem.squashfs
/
sbin
/
fsck.nfs
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2012-03-27
|
333 b
|
22 lines
#! /bin/sh
#
# fsck.nfs
#
# Dummy fsck.nfs file that always returns success. We
# need this for when the root file system is on NFS:
# there is no way to find out if root is NFS mounted
# and we really want to do a "fsck -a /".
#
while :
do
case "$1" in
-*) shift ;;
*) break ;;
esac
done
echo "$1: NFS file system."
exit 0